home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gdevpcfb.h < prev    next >
C/C++ Source or Header  |  1995-01-31  |  6KB  |  192 lines

  1. /* Copyright (C) 1989, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevpcfb.h */
  20. /* IBM PC frame buffer definitions */
  21. #ifdef __MSDOS__
  22. #  include "dos_.h"
  23. typedef union REGS registers;
  24. #endif
  25.  
  26. /* For testing, the 16-color display may be defined as a monochrome, */
  27. /* 8-color, or 16-color device. */
  28. #define ega_bits_of_color 2        /* 0, 1, or 2 */
  29. #define rgb_max ega_bits_of_color
  30.  
  31. /* Define the short (integer) version of "transparent" color. */
  32. /* ****** Depends on gx_no_color_index being all 1's. ******/
  33. #define no_color ((int)gx_no_color_index)
  34.  
  35. /* Procedures */
  36.  
  37.     /* See gxdevice.h for the definitions of the procedures. */
  38.  
  39. dev_proc_open_device(ega_open);
  40. dev_proc_close_device(ega_close);
  41. dev_proc_fill_rectangle(ega_fill_rectangle);
  42. dev_proc_tile_rectangle(ega_tile_rectangle);
  43. dev_proc_copy_mono(ega_copy_mono);
  44. dev_proc_copy_color(ega_copy_color);
  45. dev_proc_get_bits(ega_get_bits);
  46.  
  47. /* Structure for saving state of BIOS variables. */
  48. typedef struct pcfb_bios_state_s {
  49.     int display_mode;    /* must be first, see pcfb_save_state */
  50.                 /* in gdevpcfb.c */
  51.     byte text_page;
  52.     uint text_cursor_mode;
  53.     uint text_font;
  54.     byte text_attribute;
  55.     byte border_color;
  56. } pcfb_bios_state;
  57.  
  58. /* Procedures used by gdevpcfb.c */
  59. void    pcfb_set_signals(P1(gx_device *));
  60. void    pcfb_get_state(P1(pcfb_bios_state *));
  61. void    pcfb_set_mode(P1(int));
  62. void    pcfb_set_state(P1(const pcfb_bios_state *));
  63.  
  64. /* Types for frame buffer pointers. */
  65. typedef byte *fb_ptr;
  66. typedef volatile byte *volatile_fb_ptr;
  67.  
  68. /* Define the nominal page height in inches. */
  69. #ifdef A4
  70. #  define PAGE_HEIGHT_INCHES 11.69
  71. #else
  72. #  define PAGE_HEIGHT_INCHES 11.0
  73. #endif
  74.  
  75. /* The device descriptor */
  76. typedef struct gx_device_ega_s gx_device_ega;
  77. struct gx_device_ega_s {
  78.     gx_device_common;
  79.     int raster;            /* frame buffer bytes per line */
  80.     int fb_seg_mult;        /* multiplier for segment part */
  81.                     /* of frame buffer pointer */
  82.     int fb_byte_mult;        /* multiplier for word part ditto */
  83. #define mk_fb_ptr(x, y)\
  84.   (fb_dev->fb_byte_mult == 0 ?\
  85.    (fb_ptr)MK_PTR(regen + (y) * (fb_dev->fb_seg_mult), (x) >> 3) :\
  86.    (fb_ptr)MK_PTR(regen + ((y) >> 4) * (fb_dev->fb_seg_mult),\
  87.          (((y) & 15) * fb_dev->fb_byte_mult) + ((x) >> 3)))
  88.     int video_mode;
  89. };
  90.  
  91. /* Macro for creating instances */
  92. /* The initial parameters map an appropriate fraction of */
  93. /* the screen to a full-page coordinate space. */
  94. /* This may or may not be what is desired! */
  95. #define ega_device(dev_name, procs, fb_raster, screen_height, aspect_ratio, video_mode)\
  96.    {    std_device_dci_body(gx_device_ega, &procs, dev_name,\
  97.       fb_raster * 8, screen_height,\
  98.       (screen_height * (aspect_ratio)) / PAGE_HEIGHT_INCHES,    /* x dpi */\
  99.       screen_height / PAGE_HEIGHT_INCHES,        /* y dpi */\
  100.       (rgb_max ? 3 : 1),    /* num_components */\
  101.       4,            /* depth */\
  102.       (rgb_max ? rgb_max : 1),    /* max_gray */\
  103.       rgb_max,\
  104.       (rgb_max ? rgb_max + 1 : 2),    /* dither_grays */\
  105.       (rgb_max ? rgb_max + 1 : 0)    /* dither_colors */\
  106.     ),\
  107.      { 0 },            /* std_procs */\
  108.     fb_raster,\
  109.     (fb_raster & 15 ? fb_raster : fb_raster >> 4),\
  110.     (fb_raster & 15 ? fb_raster : 0),\
  111.     video_mode\
  112.    }
  113.  
  114. /* Define the device port and register numbers, and the regen map base */
  115. #define seq_addr 0x3c4
  116. #define s_map 2
  117. #define set_s_map(mask) outport2(seq_addr, s_map, mask)
  118. #define graph_addr 0x3ce
  119. #define g_const 0            /* set/reset */
  120. #define set_g_const(color) outport2(graph_addr, g_const, color)
  121. #define g_const_map 1            /* enable set/reset */
  122. #define set_g_const_map(map) outport2(graph_addr, g_const_map, map)
  123. #define g_function 3
  124. #  define gf_WRITE 0
  125. #  define gf_AND 8
  126. #  define gf_OR 0x10
  127. #  define gf_XOR 0x18
  128. #define set_g_function(func) outport2(graph_addr, g_function, func)
  129. #define g_read_plane 4
  130. #define set_g_read_plane(plane) outport2(graph_addr, g_read_plane, plane)
  131. #define g_mode 5
  132. #  define gm_DATA 0
  133. #  define gm_FILL 2
  134. #define set_g_mode(mode) outport2(graph_addr, g_mode, mode)
  135. #define g_mask 8
  136. #define set_g_mask(mask) outport2(graph_addr, g_mask, mask)
  137. #define select_g_mask() outportb(graph_addr, g_mask)
  138. #define out_g_mask(mask) outportb(graph_addr+1, mask)
  139. #define regen 0xa000
  140.  
  141. /* Define access to the frame buffer and the video registers */
  142. /* according to whether we are on a DOS system or a Unix system. */
  143.  
  144. #if defined(M_UNIX) || defined(M_XENIX) || defined(UNIX) || defined(SYSV) || defined(__linux__)
  145.  
  146.         /* SCO Unix/Xenix, AT&T SVR4, or Linux. */
  147.  
  148. #undef outportb
  149.  
  150. #if defined(__GNUC__)
  151.     /* Inline assembly version for gcc */
  152.     /* Under SCO, requires installing the gnu assembler as "as" */
  153. static inline void outportb(int port, int data)
  154. {
  155.     __asm__ volatile ("outb %0,%1" : :
  156.     "a" ((unsigned char) data),
  157.     "d" ((unsigned short) port));
  158. }
  159. static inline void outport2(int port, int index, int data)
  160. {
  161.     __asm__ volatile ("movb %0,%%ah; movb %1,%%al; outw %%ax,%2" : :
  162.     "qmi" ((unsigned char) data),
  163.     "qmi" ((unsigned char) index),
  164.     "d" ((unsigned short) port) :
  165.     "eax");
  166. }
  167. #else
  168. void    outportb(P2(uint, byte));
  169. void    outport2(P3(uint, byte, byte));
  170. #endif
  171.  
  172. /* Redefine mk_fb_ptr -- no segmented addressing. */
  173.  
  174. #undef mk_fb_ptr
  175. extern fb_ptr fb_addr;
  176. #define mk_fb_ptr(x, y)    (fb_addr + (y) * (fb_dev->raster) + ((x) >> 3))
  177.  
  178. #else
  179.  
  180.         /* MS-DOS */
  181.  
  182. /* outportb is defined in dos_.h */
  183. #define outport2(port, index, data)\
  184.   (outportb(port, index), outportb((port)+1, data))
  185.  
  186. #endif
  187.  
  188. /* Fetch and discard a byte.  Prevent the compiler from */
  189. /* optimizing this away. */
  190. static unsigned char byte_discard_;
  191. #define byte_discard(expr) byte_discard_ = (expr)
  192.